-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
-Tue Dec 4 12:06:13 2001 Owen Taylor <otaylor@redhat.com>
+Tue Dec 4 12:16:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtksettings.c (gtk_settings_set_property_value):
+ Simplify, make more efficient and fix memory leak
+ when turning quark into a string. (#66103, HideToshi
+ Tajima)
* gtk/gtkcolorsel.c: Ref and sink priv->tooltips in
init() and unref priv->tooltips in destroy rather
name = g_strdup (prop_name);
g_strcanon (name, G_CSET_A_2_Z G_CSET_a_2_z G_CSET_DIGITS "-", '-');
- name_quark = g_quark_try_string (name);
- if (name_quark)
- g_free (name);
- else
- name_quark = g_quark_from_string (name);
+ name_quark = g_quark_from_string (name);
+ g_free (name);
qvalue = g_datalist_id_get_data (&settings->queued_settings, name_quark);
if (!qvalue)